home *** CD-ROM | disk | FTP | other *** search
/ Mastering Web Site Development / Microsoft Mastering Web Site Development (Microsoft) (1997).iso / Media / Ch05 / W05D010.cc2 < prev    next >
Text File  |  1997-04-24  |  1KB  |  22 lines

  1. 0, In this demonstration, you will learn how to add 
  2. 3, VBScript code to a Web page using Visual InterDev. 
  3. 8, Open the page you want to add client-side script to 
  4. 11, with the Visual InterDev Source Editor. Then add 
  5. 16, a <SCRIPT> section to the <HEAD> section of the page. 
  6. 27, You can add the <SCRIPT> tags anywhere in the HTML 
  7. 30, document, but it's easiest to add them to the top 
  8. 33, of the file. Now set the LANGUAGE attribute to 
  9. 36, VBScript. Inside the <SCRIPT> tags I can add any 
  10. 45, VBScript code I want. For example, I can declare a 
  11. 49, variable with dim x and set it equal to a value: x = 5. 
  12. 57, Then I can use a MsgBox function to output the 
  13. 64, variable x. Any code inside the <SCRIPT> tags that is 
  14. 70, not part of a procedure will be run when the 
  15. 72, document is first loaded into the browser. Let's save 
  16. 76, this file and view it with the Visual InterDev 
  17. 78, browser. Select Preview in Browser. Notice that the 
  18. 87, message box runs, displaying the value of 5. When I 
  19. 91, dismiss the message box, the rest of the page is 
  20. 94, rendered. So, now you've seen how to add 
  21. 97, initialization code to a Web page.
  22. 100, END